home *** CD-ROM | disk | FTP | other *** search
/ Aminet 41 / Aminet 41 (2001)(Schatztruhe)[!][Feb 2001].iso / Aminet / comm / misc / ClipWatch.lha / ClipWatch / Sources / ClipWatch_Gui.h < prev    next >
C/C++ Source or Header  |  1999-11-12  |  2KB  |  94 lines

  1. #include <libraries/mui.h>
  2. #include <proto/muimaster.h>
  3. #include <clib/exec_protos.h>
  4. #include <exec/memory.h>
  5. #include <clib/alib_protos.h>
  6.  
  7. struct ObjApp
  8. {
  9.     APTR    App;
  10.     APTR    WI_Main;
  11.     APTR    MN_label_1;
  12.     APTR    SiteName;
  13.     APTR    SelectSiteSaved;
  14.     APTR    Type;
  15.     APTR    Version;
  16.     APTR    Date;
  17.     APTR    Time;
  18.     APTR    NumTelephone;
  19.     APTR    Password;
  20.     APTR    MessageTextNum0;
  21.     APTR    MessageTextNum1;
  22.     APTR    MessageTextNum2;
  23.     APTR    MessageTextNum3;
  24.     APTR    MessageTextNum4;
  25.     APTR    MessageTextNum5;
  26.     APTR    MessageTextNum6;
  27.     APTR    MessageTextNum7;
  28.     APTR    ListEtats;
  29.     APTR    ListJournal;
  30.     APTR    ChoixTraces;
  31.     APTR    Trace_DateStart;
  32.     APTR    Trace_TimeStart;
  33.     APTR    Trace_RangeDown;
  34.     APTR    Trace_Range;
  35.     APTR    Trace_RangeUp;
  36.     APTR    Trace_DateEnd;
  37.     APTR    Trace_TimeEnd;
  38.     APTR    GR_TRACES_MODE;
  39.     APTR    ListTraceNum;
  40.   APTR  GraphTrace; //MLD
  41.     APTR    Connect;
  42.     APTR    Disconnect;
  43.     APTR    ComState;
  44.     APTR    ComTime;
  45.     APTR    WI_Prefs;
  46.     APTR    Prefs_InitStringModem;
  47.     APTR    Prefs_Device;
  48.     APTR    Prefs_Unit;
  49.     APTR    Prefs_Vitesse;
  50.     APTR    Prefs_RecupJournal;
  51.     APTR    Prefs_RecupTraces;
  52.     APTR    Prefs_RecupMessages;
  53.     APTR    Prefs_Monitor;
  54.     APTR    Prefs_Monitor_Type;
  55.     APTR    Prefs_Save;
  56.     APTR    Prefs_Use;
  57.     APTR    Prefs_Cancel;
  58.     APTR    WI_SelectSite;
  59.     APTR    ListSavedSites;
  60.     char *    STR_SiteName;
  61.     char *    STR_Type;
  62.     char *    STR_Version;
  63.     char *    STR_Date;
  64.     char *    STR_Time;
  65.     char *    STR_ComState;
  66.     char *    STR_ComTime;
  67.     char *    STR_GR_grp_VISU[5];
  68.     char *    ChoixTracesContent[2];
  69.     char *    Trace_RangeContent[6];
  70.     char *    STR_GR_TRACES_MODE[3];
  71.     char *    Prefs_VitesseContent[6];
  72.     char *    Prefs_Monitor_TypeContent[4];
  73. };
  74.  
  75. #define ID_BUTTON_CONNECT 1
  76. #define ID_BUTTON_DISCONNECT 2
  77. #define ID_MENU_ABOUT 3
  78. #define ID_PREFS_CHANGED 4
  79. #define ID_MENU_ABOUTMUI 5
  80. #define ID_MENU_PREFSMUI 6
  81. #define ID_PREFS_TOSAVE 7
  82. #define ID_TRACE_START 8
  83. #define ID_TRACE_RANGEDOWN 9
  84. #define ID_TRACE_RANGEUP 10
  85. #define ID_TRACE_NEWRANGE 11
  86. #define ID_TRACE_END 12
  87. #define ID_TRACE_REFRESH 13
  88. #define ID_PREFS_WINDOWOPENED 14
  89. #define ID_SAVED_SITE_SELECTED 15
  90. #define ID_SAVED_SITE_LOAD 16
  91.  
  92. extern struct ObjApp * CreateApp(void);
  93. extern void DisposeApp(struct ObjApp *);
  94.